home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ray Dream Studio
/
Ray Dream Studio (CDRAYD1) (Ray Dream) (1995).iso
/
DREAMSDK.WIN
/
INCLUDE
/
MTYPES.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-09-06
|
439b
|
35 lines
/* $Id: mtypes.h 1.1 1995/06/29 09:36:32 YannPC Exp $ */
#ifndef __MTYPES__
#define __MTYPES__
#ifdef _WIN31
#define true 1
#define false 0
#endif
#ifdef _MAC
#ifndef __TYPES__
#include <Types.h>
#endif
#endif
typedef unsigned char Boolean;
#ifndef nil
#define nil 0
#endif
#ifndef NULL
#define NULL 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#endif